home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / STRINGS / PACKAGE6 / TO_TYPE.DOC < prev    next >
Text File  |  1990-07-25  |  1KB  |  35 lines

  1. -----------------------------------------------------------------------------
  2. ConvertToTypeString
  3. -----------------------------------------------------------------------------
  4.  
  5. declaration:    procedure ConvertToTypeString (     TurboString:
  6.                                                       String;
  7.                                                 var AString:
  8.                                                       TypeString);
  9.  
  10. purpose:        To convert a turbo-pascal string into a package string
  11.  
  12. preconditions:  TurboString is defined.  AString is undefined.
  13.  
  14. postconditions: AString filled with the contents of TurboString.
  15.  
  16. special cases:  none
  17.  
  18. example:        var
  19.                   AString:
  20.                     TypeString;
  21.                   TurboString:
  22.                     String;
  23.  
  24.                 begin
  25.                   .
  26.                   .
  27.                   .
  28.                   ConvertToTypeString (TurboString, AString);
  29.                   .
  30.                   .
  31.                   .
  32.                 end
  33.  
  34. -----------------------------------------------------------------------------
  35.